-
Notifications
You must be signed in to change notification settings - Fork 41.6k
Added support for additional Tomcat access log configuration properties #16039
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added support for additional Tomcat access log configuration properties #16039
Conversation
…rties checkExists, conditionIf, conditionUnless, encoding, ipv6Canonical, locale
|
This is great, thank you. Was there a reason for not adding a property for |
|
No worries. The |
|
So it was. Sorry. I’ve edited my comment on #16035 to hopefully avoid further confusion. |
| * Set the locale used to format timestamps in log entries and in log file | ||
| * name suffix. | ||
| */ | ||
| private String locale = Locale.getDefault().toString(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can't really do that as the sole purpose of the field init is to express a default value that isn't dependant of the environment. I'll remove that as part of the polish.
* pr/16039: Polish "Complete support for customizing Tomcat's access log" Complete support for customizing Tomcat's access log
|
@amcghie thank you very much for making your first contribution to Spring Boot. This is now merged in |
Added support for the following additional Tomcat Access Log configuration properties:
server.tomcat.accessLog.checkExistsserver.tomcat.accessLog.conditionIfserver.tomcat.accessLog.conditionUnlessserver.tomcat.accessLog.encodingserver.tomcat.accessLog.ipv6Canonicalserver.tomcat.accessLog.localeProposed solution for #16035